home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / sox / com / commerceone / CBL / n1_0 / Price.mod < prev    next >
Encoding:
Extensible Markup Language  |  2000-07-03  |  2.0 KB  |  57 lines  |  [STrk/SCPL]

  1. <?xml version="1.0"?>
  2. <!DOCTYPE schema SYSTEM "urn:x-commerceone:document:com:commerceone:xdk:xml:schema.dtd$1.0">
  3.  
  4. <schema uri="urn:x-commerceone:document:com:commerceone:CBL:CBL.sox$1.0" >
  5.  
  6. <intro>
  7. <p>Copyright Notice</p>
  8. <p>Common Business Library 2.0<br/>
  9. Copyright 1999 Commerce One, Inc.</p>
  10. <p>Permission is granted to use, copy, modify and distribute the DTD's, schemas
  11. and modules in the Commerce One Common Business Library Version 2.0 subject to the terms
  12. and conditions specified at http://www.marketsite.net/xml/cbl/copyright.html</p> 
  13. </intro>
  14.  
  15.     <!-- 
  16.         Price describes the price of one UnitOfMeasure of a product
  17.         when the product is purchased on a particular date in a
  18.         particular quantity in a particular currency.    
  19.      -->
  20.     
  21.     <elementtype name="Price">
  22.         <model>
  23.             <sequence>
  24.                 <!--  The Unit Price (for one unit of measure)
  25.                     if this Price applies. / -->
  26.                 <element type="UnitPrice" />
  27.                 
  28.                 <!--  The UnitOfMeasure.  This is often determined
  29.                     by context and omitted from the Price specification. / -->                
  30.                 <element type="UnitOfMeasure" occurs="?" />
  31.                     
  32.                 <!--  The first date that this price applies.  If
  33.                     not specified, it defaults to a date in the distant
  34.                     past.  / -->
  35.                 <element type="date" name="StartDate" occurs="?" />
  36.                 
  37.                 <!--  The last date that this price applies.  If
  38.                     not specified, it defaults to a date in the distant
  39.                     future.  / -->
  40.                 <element type="date" name="EndDate" occurs="?" />
  41.                 
  42.                 <!--  The amount of product for which this rate
  43.                     applies.  If no QuantityRange is specified, it is assumed
  44.                     that this rate applies to any quantity purchased. / -->
  45.                 <element type="QuantityRange" occurs="?" />                
  46.             </sequence>
  47.         </model>
  48.     </elementtype>
  49.     
  50.     <!--  A container for a list of one or more Price / -->
  51.     <elementtype name="ListOfPrice">
  52.         <model>
  53.             <element type="Price" occurs="+" />
  54.         </model>
  55.     </elementtype>
  56. </schema>
  57.